home *** CD-ROM | disk | FTP | other *** search
/ Adobe Graphics & Publishing SDK 1996 December / Adobe Graphics & Publishing SDK 1996 December.iso / mac / PageMaker 6.5 SDK Mac / SourceCode / PageMakerClassLibrary / Queries / PGetMasterPageInfo.h < prev    next >
C/C++ Source or Header  |  1996-07-12  |  735b  |  38 lines

  1. /*
  2.  *--- PGetMasterPageInfo.h ------------------------------------------------
  3.  * Copyright (c) 1995-96 Adobe Systems Incorporated.  All rights reserved.
  4.  * Created on Sun, Oct 22, 1995 @ 4:49 PM by Paul Ferguson.
  5.  *
  6.  * Description:
  7.  *-------------------------------------------------------------------------
  8.  */
  9. #ifndef __PGetMasterPageInfo__
  10. #define __PGetMasterPageInfo__
  11.  
  12.  
  13. class PGetMasterPageInfo
  14. {
  15.  
  16. public:
  17.  
  18.     PGetMasterPageInfo(const char * sMasterName);
  19.     
  20.     short    bSpread;
  21.     long    xLeftOrInside;
  22.     long    yTop;
  23.     long    xRghtOrOutsd;
  24.     long    yBottom;
  25.     short    nColumns;
  26.     long    xGutter;
  27.     short    nColmnRghtPg;
  28.     long    xGutterRghtPg;
  29.  
  30. private:
  31.  
  32.     PGetMasterPageInfo();
  33. };
  34.  
  35. #endif
  36.  
  37. // end of PGetMasterPageInfo.h
  38.